home *** CD-ROM | disk | FTP | other *** search
/ Stickerpedia Stickerbook / Stickerbook.iso / pc / DATA / main.dxr / 00025_Script_ [ internal ] Overlay images < prev    next >
Text File  |  2003-03-24  |  591b  |  35 lines

  1.  
  2.  
  3.  
  4. global  gCurInvisibleButton
  5.  
  6.  
  7. property spritenum
  8. property pMyType
  9.  
  10.  
  11. on showImage me
  12.   if (pMyType = "Previous") and (gCurInvisibleButton = "Previous") then exit
  13.   if (pMyType = "Next")     and (gCurInvisibleButton = "Next")     then exit
  14.   (sprite spritenum).visible = 1
  15. end
  16.  
  17.  
  18.  
  19. on hideImage me
  20.   (sprite spritenum).visible = 0
  21. end
  22.  
  23.  
  24.  
  25.  
  26. on getPropertyDescriptionList me
  27.   set description = [:]
  28.   addProp description, #pMyType, [#comment: "Type",    #format: #string,  #default: "other", #range:["other",  "Previous", "Next"]]
  29.   return description
  30. end 
  31.  
  32.  
  33.  
  34.  
  35.